escape character

英 [ɪˈskeɪp ˈkærəktə(r)] 美 [ɪˈskeɪp ˈkærəktər]

转义字符;换码字符;换码符号

计算机



双语例句

  1. Symbols that cause syntactic errors for single use and require an escape character to change semantics
    单个使用会导致语法错误而需要通过转义字符来修改语义的符号
  2. You can tell vi to place a bookmark at a point in a file by pressing the M key followed by another alphabetic character that denotes the bookmark reference.
    可以让vi在文件中的特定位置放上书签。方法是按Escape键,再按M键,然后输入另一个表示书签引用的字母表字符。
  3. For example, if you pass the string a+ b to escape(), you get a% 20+% 20b ( 20 is the hexadecimal code of the space character).
    例如,如果将字符串a+b传递给escape(),结果将是a%20+%20b(20是空格符的16进制码)。
  4. Symbols that require the escape character to achieve a syntactically valid query
    要求使用转义字符才能实现有效语法查询的一些符号
  5. The escape() function replaces almost any non-alphanumeric ASCII character with% followed by the two-digit hexadecimal code of the encoded character.
    escape()函数用%后跟被编码字符的两位16进制码代替了几乎所有非字母数字的ASCII字符。
  6. To avoid misunderstanding, let me state again that imposing an encoding is not a solution because, as explained above, it is always possible to escape special characters to character entities.
    为了避免误解,我们再说明一次,强制采用某种编码不能解决问题,因为如上所述,可以将特殊字符转义成字符实体。
  7. The triple quotes also handle the internal quotes of type= "current" without forcing you to escape them manually with a backslash character as you would in Java code.
    三重引号还可以处理type=“current”的内部引号,而不会强制您像在Java代码中那样使用反斜杠字符手动进行转义。
  8. Since we are using a Java-based tool, we need to escape the dot character in our URL, so that it is preserved in the URL that is used when we make the call.
    由于我们使用的是基于Java的工具,因此在我们的URL中需要避开逗号字符,所以当我们进行调用时它在URL中是保留的。
  9. You should be aware that escape() leaves the+ characters unencoded, which is a problem because any+ is decoded as a space character on the server.
    应该注意escape()没有编码+字符,这是个问题,因为所有的+均会在服务器上被解码为空格字符。
  10. You can switch the case of the alpha character underneath your cursor in vi the tilde key (~).
    在vi中,可以切换游标下的字母字符的大小写,方法是按Escape,然后按波浪号键(~)。
  11. The exclamation mark is an escape character that lets you issue operating system commands from either interactive input mode or batch mode.
    这个感叹号是换码符,允许您从交互输入模式或批处理模式发出操作系统命令。
  12. Escape character, used to escape any of the special formatting characters.
    含于格式中的字串,不可编辑。
  13. The Default Escape Character, Default Wrap Character and Default Pad Character properties must be unique.
    默认转义符、默认换行符和默认填充字符的属性均必须唯一。
  14. Syntax is not valid: Escape character occurs as last character.
    语法无效:换码符作为最后一个字符出现。
  15. Note that the escape character is written in single quotes, not double quotes.
    注意转义字符写到单引用中,而不是双引用。
  16. Here's where the magic escape charater comes in handy: First, you have to get telnet's attention by pressing the escape character.
    下面是一些有效的退出办法:首先,你按退出字符,以引起telnet的注意。
  17. Escape character within a record.
    记录内的转义符。
  18. The Schema Annotations: Default Child Delimiter, Default Repeating Delimiter, Default Wrap Character, and Default Escape Character should all be unique.
    架构批注:默认子分隔符、默认重复分隔符、默认换行符和默认转义符均应唯一。
  19. All spaces, punctuation, accented characters, and any other non-ASCII characters are replaced with% xx encoding, where xx is equivalent to the hexadecimal number representing the character.
    Escape方法会将传入参数中所有的空格、标点符号、重音字符以及其它任何非ASCII字符替换为%xx的编码形式,其中xx与其所表示的字符的16进制数表示形式相同。
  20. The-character continues to be the escape character.
    字符继续作为转义符。
  21. The escape function returns the hexadecimal encoding of an argument in the ISO Latin character set.
    escape方法对于ISOLatin字符集中的字符组成的参数,返回其16进制编码。
  22. Both Default Escape Character and Default Escape Character Type properties must be set.
    必须设置默认转义符属性和默认转义符类型属性。
  23. New Term: An escape character changes the meaning of the character that follows it.
    新术语:转义符改变紧接它后面的字符的本身意思。
  24. For ASCII files, you can specify the field delimiter for the file, as well as the escape character, whether trailing blanks should be included, and the encoding for the file.
    对于ascii文件,您可以指定文件的字段分隔符、转义字符、是否应包括尾随空白,以及文件的编码。
  25. So you have what are called escape characters like backslash N that is the shorthand notation of telling the computer put a new line character here.
    幸亏我们有一些类似反斜杠n的转义字符,这只是一种简化方式,用来告知电脑要在这新添一行。